home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Whowhat.dxr / 00004_drag.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  360 b   |  22 lines

  1. property buttonActive
  2.  
  3. on mouseDown me
  4.   set buttonActive to 1
  5. end
  6.  
  7. on mouseUp me
  8.   set buttonActive to 0
  9. end
  10.  
  11. on mouseUpOutSide me
  12.   set buttonActive to 0
  13. end
  14.  
  15. on prepareFrame me
  16.   if buttonActive = 1 then
  17.     set the locH of sprite the spriteNum of me to the mouseH
  18.     set the locV of sprite the spriteNum of me to the mouseV
  19.     updateStage()
  20.   end if
  21. end
  22.